home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The World's Largest Collection of Windows Software
/
The World's Largest Collection of Windows Software - Disc 1.iso
/
connect
/
_b2
/
cmotion
/
disk3.bat
< prev
next >
Wrap
DOS Batch File
|
1993-06-03
|
363b
|
25 lines
@echo off
cls
if (%1) == () goto ERROR
echo Please ensure disk 3 (formatted and empty) is in drive %1 and
pause
cls
echo Creating Disk label
label %1 CYBER_3
echo copying files
copy disk.003 %1\disk.id > NUL
copy c-motion.003 %1 > NUL
echo done
goto END
:ERROR
echo You must supply a disk letter to copy to.
echo e.g. Disk3 a:
:END